TQ3ObjectUnregisterMethod
You can define a method to unregister your custom object class.
typedef TQ3Status (*TQ3ObjectUnregisterMethod) ( TQ3ObjectClass objectClass);
objectClass
- An object class.
DESCRIPTION
YourTQ3ObjectUnregisterMethod
function should perform whatever operations are necessary to unregister the object class specified by theobjectClass
parameter. If you have local data associated with that object class, you should define an unregistration method. You must not call theQ3ObjectClass_Unregister
function within this method.RESULT CODES
YourTQ3ObjectUnregisterMethod
function should returnkQ3Success
if it is successful andkQ3Failure
otherwise.